*{
	margin: 0;
	padding: 0;
}
a{
	text-decoration: none;
}
.navbar{
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 20px 5px;
	background-color: brown;
	position: fixed;
	z-index: 1;
	top: 0;
	width: 100%;
}
.title h2{
	color: white;
	font-family: Tahoma;
	font-size: 25px;
}
.navbar-opts{
	
}
.navbar-opts a{
	border: 1px solid white;
	font-size: 15px;
	font-family: Tahoma;
	padding: 7px 22px;
	border-radius: 4px;
	color: white;
}
.content{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
	margin-top: 120px;
	width: 90%;
	margin-left: 20px;
	margin-right: 20px;
}
.form-container{
	box-shadow: 2px 2px 5px 1px rgba(10, 10, 10, .3);
	
    padding: 20px 20px;
}
.form-fields-container{
	display: flex;
	flex-direction: column;
	margin: 5px 10px;
}
.form-fields-container label{
	font-size: 14px;
	font-family: Tahoma;
}
.form-title{
	margin: 20px 10px;
}
.form-title h3{
	font-family: Tahoma;
	font-size: 22px;
	
}
.form-field{
	border: 1px solid rgba(10, 10, 10, .3);
	padding: 5px 5px;
	font-size: 13px;
	font-family: Tahoma;
	outline: 0;
	width: 400px;
	border-radius: 5px;
}
.submit-section{
	margin: 5px 10px;
}
.submit-btn{
	width: 100%;
	padding: 10px 0;
	background-color: brown;
	color: white;
	border: 0;
	outline: 0;
	font-family: Tahoma;
	
}
.menu-btn{
	display: none;
	cursor: pointer;
}
.menu-btn div{
	background-color: whitesmoke;
	width: 25px;
	height: 5px;
	margin: 4px 0;
}
.err-feedback{
	color: orangered;
	font-family: Tahoma;
	font-size: 12px;
}
.latest-updates-title{
	text-align: left;
	margin: 10px 10px;
}
.latest-updates-title h2{
	font-family: Tahoma;
	font-size: 25px;
	font-weight: 550;
	color: brown;
}
.posts ul li{
	list-style: none;
	border: 1px solid rgba(0, 0, 0, .2);
	padding: 10px 10px;
	margin: 5px 0;
}
.post-title-listing h3{
	font-family: Tahoma;
	font-size: 23px;
	margin: 5px 5px;
	font-weight: 550;
}
.post-body{
	padding: 5px 10px;
}
.post-body p{
	white-space: pre-wrap;
	font-family: Tahoma;
	font-size: 15px;
}
.timestamp p{
	color: rgba(20, 20, 20, .5);
	font-family: Tahoma;
	font-size: 13px;
}
.form-field-textarea{
	outline: 0;
	border: 1px solid grey;
	height: 300px;
	padding: 5px 5px;
	font-family: Tahoma;
}
@media (max-width: 700px){
	.form-field{
		width: 250px;
	}
	.navbar-opts{
		position: fixed;
		z-index: 2;
		height: 100%;
		background-color: rgba(240, 240, 240);
		right: -1000px;
		top: 0;
		display: flex;
		flex-direction: column;
		width: 70%;
		border: 1px solid rgba(50, 50, 50, .1);
	}
	.navbar-opts.display-menu{
		right: 0;
	}
	.navbar-opts a{
		color: black;
		font-size: 17px;
		padding: 5px 5px;
		border-bottom: 1px solid rgba(0, 0, 0, .1);
		z-index: 3;
		padding: 12px 12px;
		border-radius: 0;
	}
	.menu-btn{
		display: block;
	}
}